-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Add next meeting date field to Meeting Model #2197
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
for more information, see https://pre-commit.ci
for more information, see https://pre-commit.ci
for more information, see https://pre-commit.ci
for more information, see https://pre-commit.ci
{% if next_meeting_date %} | ||
{% translate "The next meeting is scheduled for: " context "Following meetings schedule" %}{{next_meeting_date|date:"DATE_FORMAT"}} | ||
{% endif %} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unsure if there is a better to do this, so that line 32 isn't as long. While not having a \n
between The next meeting is scheduled for:
and the date. I know django {% spaceless %}
tag would work here, but seems a bit overkill.
Thanks for all the feedback! I implemented all the changes. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm punting on the line length change. I personally would let it be as is, but I'm not a maintainer of this project. Thanks for making the changes I suggested @house-ben!
Adds next meeting field discussed in #1705
Updates the foundation sidebar to include the next meeting date to add transparency to the community. At the direction of thibaudcolas discussed in the issue.
Example with the last meeting having a
next_meeting_date
Unsure if it would be better to have the next_meeting_date be calculated inside the template.